Skip to content
Merged
Show file tree
Hide file tree
Changes from 53 commits
Commits
Show all changes
56 commits
Select commit Hold shift + click to select a range
c9f6209
Adds base for updating TextAnalytics from version preview/v3.1-previe…
assafi Jul 17, 2020
95aa0dc
Updates readme
assafi Jul 17, 2020
6bc92e6
Updates API version in new specs and examples
assafi Jul 17, 2020
2a3dabe
v3.2-preview.1 /analyze + examples
assafi Jul 24, 2020
b25d48a
Adding tasks
assafi Jul 24, 2020
ad9bd0f
Adding Healthcare
assafi Jul 24, 2020
270faeb
Healthcare example
assafi Jul 24, 2020
33e07cd
Removing displayName from healthcare example
assafi Jul 24, 2020
35184d6
Restore v3.1-preview.1 and new v3.2-preview.1 folder
assafi Jul 24, 2020
bbb0cf3
Restoring v3.1-preview.1 swagger
assafi Jul 24, 2020
7bb9d03
Removing some obsolete settings from readme.md
assafi Jul 24, 2020
471388e
Adding error examples
assafi Jul 24, 2020
e183884
Fixing LD swagger + examples
assafi Jul 24, 2020
fd811ec
Fixing KPE example
assafi Jul 24, 2020
b394068
PII redactedText in the right place
assafi Jul 24, 2020
fc9ffe5
Addressing linting issues
assafi Jul 24, 2020
4378801
More linting errors + file name typo
assafi Jul 24, 2020
a5ea169
LRO RC from 202 to 204
assafi Jul 24, 2020
646ba42
Error responses under "error" property in 400/500
assafi Jul 24, 2020
f0b401f
Fixing enum casing
assafi Jul 24, 2020
f2b8667
StringIndexType enum casing
assafi Jul 24, 2020
569fbdf
Enum as strings + common parameters
assafi Jul 24, 2020
6b3fbfa
NotFound code + fixing date formats
assafi Jul 24, 2020
deaf191
Adding x-ms-parameter-location to global parameters
assafi Jul 24, 2020
5ba59c0
CustomEntity confirms to TA batch
assafi Jul 25, 2020
94dc321
Changing back to 202 RC on LRO
assafi Jul 27, 2020
86dd11e
Merge branch 'master' into dev-cognitiveservices-TextAnalytics-2018-0…
assafi Jul 27, 2020
363ea39
Flipping delete and get operation order
assafi Jul 28, 2020
4e63628
PHI description + analyze state creation date update
assafi Jul 28, 2020
ea679e7
Adding descriptions to healthcare entities + example updates
assafi Jul 28, 2020
07c1279
Removing polymorph types on /analyze
assafi Aug 6, 2020
ccc08ed
Removing TextAnalyticsResult ref
assafi Aug 11, 2020
46755ff
Removing left-over type property from task results
assafi Aug 12, 2020
3fd7141
Merging master + latest v3.1-preview.2
assafi Sep 14, 2020
3ec491a
Update TextAnalytics.json
suhas92 Sep 22, 2020
84e2f6c
Merge pull request #1 from suhas92/patch-1
assafi Sep 22, 2020
9146c42
Moving redacted text to the document level instead of entity level
assafi Sep 23, 2020
4ef416b
Changed 204 response to 202 for Healthcare job deletion
Oct 6, 2020
24fb5e4
Merge pull request #2 from abhahn/abhahn/health_delete_response
assafi Oct 6, 2020
23c8df3
fix breaking changes and swagger lint
suhas92 Oct 6, 2020
bafc27e
fix prettier
suhas92 Oct 6, 2020
663be6d
fix warnings for auto rest
suhas92 Oct 7, 2020
6391c5a
fix healthcareentity
suhas92 Oct 7, 2020
437fa13
fix prettier
suhas92 Oct 7, 2020
d05f89f
remove 404 and 500 from analyze and health
suhas92 Oct 7, 2020
cbe97f2
add suppression for 202 LongRunningResponseStatusCode
suhas92 Oct 7, 2020
730efd4
removing multi api section (deprecated)
suhas92 Oct 8, 2020
c7c7ad3
Merge branch 'master' into dev-cognitiveservices-TextAnalytics-2018-0…
suhas92 Oct 8, 2020
bfe3109
removing custom text variables from swagger and examples
suhas92 Oct 14, 2020
a9a8346
Local changes to readme files
Oct 14, 2020
8ac6b22
Merged with latest updates
Oct 14, 2020
e2e2268
Removed TextAnalyticsTask definition and updated other definitions th…
Oct 14, 2020
880a1f0
Merge pull request #1 from abhahn/abhahn/analyze_remove_task_enable
suhas92 Oct 14, 2020
bad940f
remove multi api section (deprecated))
suhas92 Oct 16, 2020
ec060cd
reverting back the readme changes
suhas92 Oct 16, 2020
f92f286
update StringIndexType to StringIndexTypeResponse in one of the enums
suhas92 Oct 16, 2020
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 4 additions & 2 deletions cSpell.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,9 @@
"version": "0.1",
"language": "en",
"words": [
"Creds"
"Creds",
"partiallycompleted",
"umls"
],
"dictionaryDefinitions": [
{
Expand Down Expand Up @@ -748,4 +750,4 @@
]
}
]
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -975,15 +975,19 @@
"type": "object",
"required": [
"id",
"redactedText",
"entities",
"warnings",
"redactedText"
"warnings"
],
"properties": {
"id": {
"type": "string",
"description": "Unique, non-empty document identifier."
},
"redactedText": {
"type": "string",
"description": "Returns redacted text."
},
"entities": {
"type": "array",
"description": "Recognized entities in the document.",
Expand All @@ -1001,10 +1005,6 @@
"statistics": {
"description": "if showStats=true was specified in the request this field will contain information about the document payload.",
"$ref": "#/definitions/DocumentStatistics"
},
"redactedText": {
"type": "string",
"description": "Returns redacted text."
}
}
},
Expand Down
Loading