Skip to content
Merged
Changes from all commits
Commits
Show all changes
25 commits
Select commit Hold shift + click to select a range
c4ede63
updated examples and health definitions for new preview version
Jan 8, 2021
ffc08e4
fixed linting issue in readme
Jan 11, 2021
d1b558f
removed old properties in ta.json
Jan 11, 2021
c96681e
undo changes to sentiment portion of response, update health response
Jan 11, 2021
dad4bd6
fixed spelling issues
Jan 11, 2021
eea5942
fixed more typose
Jan 11, 2021
9503770
remove linting issue in readme
Jan 12, 2021
89bf5a7
added enums to assertions
Jan 12, 2021
93b24be
add in ms-enum extension
Jan 13, 2021
eb0a5f6
Merge branch 'dev-cognitiveservices-TextAnalytics-v3.1-preview.4' int…
ctufts Jan 13, 2021
cbda14c
merged in latest changes from upstream
Jan 13, 2021
3f00546
ran prettier json linter over files
Jan 13, 2021
ef8c705
made assertion field singular
Jan 13, 2021
0b38ac6
Merge remote-tracking branch 'upstream/dev-cognitiveservices-TextAnal…
Jan 22, 2021
80ac1a8
addressed comments and updated description
Jan 25, 2021
9b3af4d
Merge remote-tracking branch 'upstream/dev-cognitiveservices-TextAnal…
Jan 26, 2021
1bf01b3
addressed comments for minor syntax changes
Jan 26, 2021
fa263cf
replaced all instances of well-known
Jan 26, 2021
3f1a325
fixed linting issue - pii category was set to list instead of string
Jan 26, 2021
6ee5457
Merge remote-tracking branch 'upstream/dev-cognitiveservices-TextAnal…
Jan 26, 2021
c653bfb
revert change to pii default
Jan 26, 2021
19a17af
remove default value as this is an optional parameter
Jan 26, 2021
5c40ff3
added extensible list to relation types for healthcare
Jan 29, 2021
2fba1e5
revert change to pii default
Jan 29, 2021
a35b32f
changed enum type and made extensible via the modelAsString param
Feb 1, 2021
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
Original file line number Diff line number Diff line change
Expand Up @@ -1826,7 +1826,34 @@
"properties": {
"relationType": {
"description": "Type of relation. Examples include: `DosageOfMedication` or 'FrequencyOfMedication', etc.",
"type": "string"
"type": "string",
"enum":[
"Abbreviation",
"DirectionOfBodystructure",
"DirectionOfCondition",
"DirectionOfExamination",
"DirectionOfTreatment",
"DosageOfMedication",
"FormOfMedication",
"FrequencyOfMedication",
"FrequencyOfTreatment",
"QualifierOfCondition",
"RelationOfExamination",
"RouteOfMedication",
"TimeOfCondition",
"TimeOfEvent",
"TimeOfExamination",
"TimeOfMedication",
"TimeOfTreatment",
"UnitOfCondition",
"UnitOfExamination",
"ValueOfCondition",
"ValueOfExamination"
],
"x-ms-enum": {
"name": "relationType",
"modelAsString": true
}
},
"entities": {
"description": "The entities in the relation.",
Expand Down