-
Notifications
You must be signed in to change notification settings - Fork 5.1k
/
analyzeconversations.json
4800 lines (4800 loc) · 142 KB
/
analyzeconversations.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
{
"swagger": "2.0",
"info": {
"title": "Microsoft Cognitive Language Service - Analyze Conversations",
"version": "2024-05-01",
"description": "The language service conversations API is a suite of natural language processing (NLP) skills that can be used to analyze structured conversations (textual or spoken). The synchronous API in this suite accepts a request and mediates among multiple language projects, such as LUIS Generally Available, Question Answering, Conversational Language Understanding, and then calls the best candidate service to handle the request. At last, it returns a response with the candidate service's response as a payload.\\n\\n In some cases, this API needs to forward requests and responses between the caller and an upstream service. The asynchronous APIs in this suite enable tasks like Conversation Summarization and Conversational PII detection.",
"x-typespec-generated": [
{
"emitter": "@azure-tools/typespec-autorest"
}
]
},
"schemes": [
"https"
],
"x-ms-parameterized-host": {
"hostTemplate": "{Endpoint}/language",
"useSchemePrefix": false,
"parameters": [
{
"name": "Endpoint",
"in": "path",
"description": "Supported Cognitive Services endpoint (e.g., https://<resource-name>.api.cognitiveservices.azure.com).",
"required": true,
"type": "string"
}
]
},
"produces": [
"application/json"
],
"consumes": [
"application/json"
],
"security": [
{
"ApiKeyAuth": []
}
],
"securityDefinitions": {
"ApiKeyAuth": {
"type": "apiKey",
"name": "Ocp-Apim-Subscription-Key",
"in": "header"
}
},
"tags": [],
"paths": {
"/:analyze-conversations": {
"post": {
"operationId": "AnalyzeConversations",
"description": "Analyzes the input conversation utterance.",
"parameters": [
{
"$ref": "#/parameters/Azure.Core.Foundations.ApiVersionParameter"
},
{
"name": "body",
"in": "body",
"required": true,
"schema": {
"$ref": "#/definitions/AnalyzeConversationTask"
}
}
],
"responses": {
"200": {
"description": "The request has succeeded.",
"schema": {
"$ref": "#/definitions/AnalyzeConversationTaskResult"
}
},
"default": {
"description": "An unexpected error response.",
"schema": {
"$ref": "#/definitions/ErrorResponse"
},
"headers": {
"x-ms-error-code": {
"type": "string",
"description": "String error code indicating what went wrong."
}
}
}
},
"x-ms-examples": {
"SuccessfulAnalyzeConversations": {
"$ref": "./examples/SuccessfulAnalyzeConversations.json"
},
"SuccessfulAnalyzeConversationsArbitration": {
"$ref": "./examples/SuccessfulAnalyzeConversationsArbitration.json"
},
"SuccessfulAnalyzeConversationsArbitrationDirectTarget": {
"$ref": "./examples/SuccessfulAnalyzeConversationsArbitrationDirectTarget.json"
}
}
}
},
"/analyze-conversations/jobs": {
"post": {
"operationId": "AnalyzeConversationsSubmitJob",
"description": "Analyzes the input conversation utterance.",
"parameters": [
{
"$ref": "#/parameters/Azure.Core.Foundations.ApiVersionParameter"
},
{
"name": "body",
"in": "body",
"required": true,
"schema": {
"$ref": "#/definitions/AnalyzeConversationJobsInput"
}
}
],
"responses": {
"202": {
"description": "The request has been accepted for processing, but processing has not yet completed.",
"headers": {
"Operation-Location": {
"type": "string",
"format": "uri",
"description": "The location for monitoring the operation state."
}
}
},
"default": {
"description": "An unexpected error response.",
"schema": {
"$ref": "#/definitions/ErrorResponse"
},
"headers": {
"x-ms-error-code": {
"type": "string",
"description": "String error code indicating what went wrong."
}
}
}
},
"x-ms-examples": {
"SuccessfulConversationPIIExclusionSubmit": {
"$ref": "./examples/SuccessfulConversationPIIExclusionSubmit.json"
},
"SuccessfulConversationPIIRedactionCharSubmit": {
"$ref": "./examples/SuccessfulConversationPIIRedactionCharSubmit.json"
},
"SuccessfulConversationPIISubmit": {
"$ref": "./examples/SuccessfulConversationPIISubmit.json"
},
"SuccessfulConversationSummarizationTaskSubmit": {
"$ref": "./examples/SuccessfulConversationSummarizationTaskSubmit.json"
},
"SuccessfulConversationSummarySubmit": {
"$ref": "./examples/SuccessfulConversationSummarySubmit.json"
}
},
"x-ms-long-running-operation": true
}
},
"/analyze-conversations/jobs/{jobId}": {
"get": {
"operationId": "AnalyzeConversationsJobStatus",
"summary": "Get analysis status and results",
"description": "Get the status of an analysis job. A job can consist of one or more tasks. After all tasks succeed, the job transitions to the succeeded state and results are available for each task.",
"parameters": [
{
"$ref": "#/parameters/Azure.Core.Foundations.ApiVersionParameter"
},
{
"name": "jobId",
"in": "path",
"description": "job ID",
"required": true,
"type": "string",
"format": "uuid"
},
{
"name": "showStats",
"in": "query",
"description": "(Optional) if set to true, response will contain request and document level statistics.",
"required": false,
"type": "boolean"
}
],
"responses": {
"200": {
"description": "The request has succeeded.",
"schema": {
"$ref": "#/definitions/AnalyzeConversationJobState"
}
},
"default": {
"description": "An unexpected error response.",
"schema": {
"$ref": "#/definitions/ErrorResponse"
},
"headers": {
"x-ms-error-code": {
"type": "string",
"description": "String error code indicating what went wrong."
}
}
}
},
"x-ms-examples": {
"SuccessfulConversationPIIExclusionTaskStatusRequest": {
"$ref": "./examples/SuccessfulConversationPIIExclusionTaskStatusRequest.json"
},
"SuccessfulConversationPIIRedactionCharTaskStatusRequest": {
"$ref": "./examples/SuccessfulConversationPIIRedactionCharTaskStatusRequest.json"
},
"SuccessfulConversationPIITaskStatusRequest": {
"$ref": "./examples/SuccessfulConversationPIITaskStatusRequest.json"
},
"SuccessfulConversationSummarizationTaskResult": {
"$ref": "./examples/SuccessfulConversationSummarizationTaskResult.json"
},
"SuccessfulConversationSummarizationTaskStatusRequest": {
"$ref": "./examples/SuccessfulConversationSummarizationTaskStatusRequest.json"
}
}
}
},
"/analyze-conversations/jobs/{jobId}:cancel": {
"post": {
"operationId": "AnalyzeConversationsCancelJob",
"summary": "Cancel a long-running Text Analysis conversations job.",
"description": "Cancel a long-running job for text analysis of conversations.",
"parameters": [
{
"$ref": "#/parameters/Azure.Core.Foundations.ApiVersionParameter"
},
{
"name": "jobId",
"in": "path",
"description": "The job ID to cancel.",
"required": true,
"type": "string",
"format": "uuid"
}
],
"responses": {
"202": {
"description": "The request has been accepted for processing, but processing has not yet completed.",
"headers": {
"Operation-Location": {
"type": "string",
"format": "uri",
"description": "The location for monitoring the operation state."
}
}
},
"default": {
"description": "An unexpected error response.",
"schema": {
"$ref": "#/definitions/ErrorResponse"
},
"headers": {
"x-ms-error-code": {
"type": "string",
"description": "String error code indicating what went wrong."
}
}
}
},
"x-ms-examples": {
"SuccessfulAnalyzeConversationsJobsCancelRequest": {
"$ref": "./examples/SuccessfulAnalyzeConversationsJobsCancelRequest.json"
}
},
"x-ms-long-running-operation": true
}
}
},
"definitions": {
"AgeResolution": {
"type": "object",
"description": "Represents the Age entity resolution model.",
"properties": {
"value": {
"type": "number",
"format": "double",
"description": "The numeric value that the extracted text denotes."
},
"unit": {
"$ref": "#/definitions/AgeUnit",
"description": "The Age Unit of measurement"
}
},
"required": [
"value",
"unit"
],
"allOf": [
{
"$ref": "#/definitions/BaseResolution"
}
],
"x-ms-discriminator-value": "AgeResolution"
},
"AgeUnit": {
"type": "string",
"description": "The Age Unit of measurement",
"enum": [
"Unspecified",
"Year",
"Month",
"Week",
"Day"
],
"x-ms-enum": {
"name": "AgeUnit",
"modelAsString": true,
"values": [
{
"name": "Unspecified",
"value": "Unspecified",
"description": "Unspecified age unit"
},
{
"name": "Year",
"value": "Year",
"description": "Year age unit"
},
{
"name": "Month",
"value": "Month",
"description": "Month age unit"
},
{
"name": "Week",
"value": "Week",
"description": "Week age unit"
},
{
"name": "Day",
"value": "Day",
"description": "Day age unit"
}
]
}
},
"AnalysisParameters": {
"type": "object",
"description": "This is the parameter set of either the Orchestration project itself or one of the target services.",
"properties": {
"targetProjectKind": {
"$ref": "#/definitions/targetProjectKind",
"description": "The type of a target service"
},
"apiVersion": {
"type": "string",
"description": "The API version to use when call a specific target service."
}
},
"discriminator": "targetProjectKind",
"required": [
"targetProjectKind"
]
},
"AnalyzeConversationConversationPiiResult": {
"type": "object",
"description": "Result from the personally identifiable information detection and redaction operation performed on a list of conversations.",
"properties": {
"results": {
"$ref": "#/definitions/ConversationPiiResults",
"description": "results"
}
},
"required": [
"results"
],
"allOf": [
{
"$ref": "#/definitions/AnalyzeConversationJobResult"
}
],
"x-ms-discriminator-value": "ConversationalPIIResults"
},
"AnalyzeConversationJobResult": {
"type": "object",
"description": "Container for results of all tasks in the conversation job.",
"properties": {
"lastUpdateDateTime": {
"type": "string",
"format": "date-time",
"description": "The last updated time in UTC for the task."
},
"status": {
"$ref": "#/definitions/State",
"description": "The status of the task at the mentioned last update time."
},
"taskName": {
"type": "string",
"description": "task name"
},
"kind": {
"$ref": "#/definitions/AnalyzeConversationResultsKind",
"description": "discriminator kind"
}
},
"discriminator": "kind",
"required": [
"lastUpdateDateTime",
"status",
"kind"
]
},
"AnalyzeConversationJobState": {
"type": "object",
"description": "Contains the status of the submitted job for analyzing a conversation, along with related statistics.",
"properties": {
"displayName": {
"type": "string",
"description": "display name"
},
"createdDateTime": {
"type": "string",
"format": "date-time",
"description": "Date and time job created"
},
"expirationDateTime": {
"type": "string",
"format": "date-time",
"description": "Date and time job expires"
},
"jobId": {
"$ref": "#/definitions/Azure.Core.uuid",
"description": "job ID",
"readOnly": true
},
"lastUpdatedDateTime": {
"type": "string",
"format": "date-time",
"description": "last updated date and time"
},
"status": {
"$ref": "#/definitions/State",
"description": "status"
},
"errors": {
"type": "array",
"description": "errors",
"items": {
"$ref": "#/definitions/Error"
},
"x-ms-identifiers": []
},
"nextLink": {
"type": "string",
"description": "next link"
},
"tasks": {
"$ref": "#/definitions/Tasks",
"description": "Contains the state for the tasks that are being executed as part of the submitted job for analyzing a conversation."
},
"statistics": {
"$ref": "#/definitions/ConversationRequestStatistics",
"description": "Contains the statistics for the submitted job."
}
},
"required": [
"createdDateTime",
"jobId",
"lastUpdatedDateTime",
"status",
"tasks"
]
},
"AnalyzeConversationJobsInput": {
"type": "object",
"description": "It is a wrap up a Question Answering KB response.",
"properties": {
"displayName": {
"type": "string",
"description": "Display name for the analysis job."
},
"analysisInput": {
"$ref": "#/definitions/MultiLanguageConversationAnalysisInput",
"description": "Analysis Input",
"x-ms-mutability": [
"read",
"create"
]
},
"tasks": {
"type": "array",
"description": "Set of tasks to execute on the input conversation.",
"items": {
"$ref": "#/definitions/AnalyzeConversationLROTask"
},
"x-ms-identifiers": []
}
},
"required": [
"analysisInput",
"tasks"
]
},
"AnalyzeConversationLROTask": {
"type": "object",
"description": "Base class for a long-running conversation input task.",
"properties": {
"taskName": {
"type": "string",
"description": "task name"
},
"kind": {
"$ref": "#/definitions/AnalyzeConversationLROTaskKind",
"description": "Enumeration of supported analysis tasks on a collection of conversations."
}
},
"discriminator": "kind",
"required": [
"kind"
]
},
"AnalyzeConversationLROTaskKind": {
"type": "string",
"description": "Enumeration of supported analysis tasks on a collection of conversations.",
"enum": [
"ConversationalSummarizationTask",
"ConversationalPIITask"
],
"x-ms-enum": {
"name": "AnalyzeConversationLROTaskKind",
"modelAsString": true,
"values": [
{
"name": "ConversationalSummarizationTask",
"value": "ConversationalSummarizationTask",
"description": "Conversational Summarization Task"
},
{
"name": "ConversationalPIITask",
"value": "ConversationalPIITask",
"description": "Conversational PII Task"
}
]
}
},
"AnalyzeConversationPiiTask": {
"type": "object",
"description": "Task definition for a PII redaction in conversations.",
"properties": {
"parameters": {
"$ref": "#/definitions/ConversationPiiTaskParameters",
"description": "parameters"
}
},
"allOf": [
{
"$ref": "#/definitions/AnalyzeConversationLROTask"
}
],
"x-ms-discriminator-value": "ConversationalPIITask"
},
"AnalyzeConversationResult": {
"type": "object",
"description": "Represents a conversation analysis response.",
"properties": {
"query": {
"type": "string",
"description": "The conversation utterance given by the caller."
},
"detectedLanguage": {
"type": "string",
"description": "The system detected language for the query in BCP 47 language representation.."
},
"prediction": {
"$ref": "#/definitions/BasePrediction",
"description": "The prediction result of a conversation project."
}
},
"required": [
"query",
"prediction"
]
},
"AnalyzeConversationResultsKind": {
"type": "string",
"description": "Enumeration of results for supported conversation analysis Results.",
"enum": [
"ConversationalSummarizationResults",
"ConversationalPIIResults"
],
"x-ms-enum": {
"name": "AnalyzeConversationResultsKind",
"modelAsString": true,
"values": [
{
"name": "ConversationalSummarizationResults",
"value": "ConversationalSummarizationResults",
"description": "Conversational Summarization Results"
},
{
"name": "ConversationalPIIResults",
"value": "ConversationalPIIResults",
"description": "Conversational PII Results"
}
]
}
},
"AnalyzeConversationSummarizationResult": {
"type": "object",
"description": "Result for the summarization task on the conversation.",
"properties": {
"results": {
"$ref": "#/definitions/SummaryResult",
"description": "results"
}
},
"required": [
"results"
],
"allOf": [
{
"$ref": "#/definitions/AnalyzeConversationJobResult"
}
],
"x-ms-discriminator-value": "ConversationalSummarizationResults"
},
"AnalyzeConversationSummarizationTask": {
"type": "object",
"description": "Task definition for conversational summarization.",
"properties": {
"parameters": {
"$ref": "#/definitions/ConversationSummarizationTaskParameters",
"description": "parameters"
}
},
"allOf": [
{
"$ref": "#/definitions/AnalyzeConversationLROTask"
}
],
"x-ms-discriminator-value": "ConversationalSummarizationTask"
},
"AnalyzeConversationTask": {
"type": "object",
"description": "The base class of a conversation input task.",
"properties": {
"kind": {
"$ref": "#/definitions/AnalyzeConversationTaskKind",
"description": "The base class of a conversation input task.",
"x-ms-mutability": [
"read",
"create"
]
}
},
"discriminator": "kind",
"required": [
"kind"
]
},
"AnalyzeConversationTaskKind": {
"type": "string",
"description": "Enumeration of supported Conversation tasks.",
"enum": [
"Conversation"
],
"x-ms-enum": {
"name": "AnalyzeConversationTaskKind",
"modelAsString": true,
"values": [
{
"name": "Conversation",
"value": "Conversation",
"description": "Conversation task kind"
}
]
}
},
"AnalyzeConversationTaskResult": {
"type": "object",
"description": "The base class of a conversation input task result.",
"properties": {
"kind": {
"$ref": "#/definitions/AnalyzeConversationTaskResultsKind",
"description": "The base class of a conversation input task result."
}
},
"discriminator": "kind",
"required": [
"kind"
]
},
"AnalyzeConversationTaskResultsKind": {
"type": "string",
"description": "Enumeration of supported conversational task results.",
"enum": [
"ConversationResult"
],
"x-ms-enum": {
"name": "AnalyzeConversationTaskResultsKind",
"modelAsString": true,
"values": [
{
"name": "ConversationResult",
"value": "ConversationResult",
"description": "Conversation result task kind"
}
]
}
},
"AnswerSpan": {
"type": "object",
"description": "Answer span object of QnA.",
"properties": {
"text": {
"type": "string",
"description": "Predicted text of answer span."
},
"confidenceScore": {
"type": "number",
"format": "double",
"description": "Predicted score of answer span, value ranges from 0 to 1.",
"minimum": 0,
"maximum": 1
},
"offset": {
"type": "integer",
"format": "int32",
"description": "The answer span offset from the start of answer."
},
"length": {
"type": "integer",
"format": "int32",
"description": "The length of the answer span."
}
}
},
"AnswersOptions": {
"type": "object",
"description": "Parameters to query a knowledge base.",
"properties": {
"qnaId": {
"type": "integer",
"format": "int32",
"description": "Exact QnA ID to fetch from the knowledge base, this field takes priority over question."
},
"question": {
"type": "string",
"description": "User question to query against the knowledge base."
},
"top": {
"type": "integer",
"format": "int32",
"description": "Max number of answers to be returned for the question."
},
"userId": {
"type": "string",
"description": "Unique identifier for the user."
},
"confidenceScoreThreshold": {
"type": "number",
"format": "double",
"description": "Minimum threshold score for answers, value ranges from 0 to 1.",
"minimum": 0,
"maximum": 1
},
"context": {
"$ref": "#/definitions/KnowledgeBaseAnswerContext",
"description": "Context object with previous QnA's information."
},
"rankerType": {
"$ref": "#/definitions/RankerKind",
"description": "Type of ranker to be used."
},
"filters": {
"$ref": "#/definitions/QueryFilters",
"description": "Filter QnAs based on given metadata list and knowledge base sources."
},
"answerSpanRequest": {
"$ref": "#/definitions/ShortAnswerOptions",
"description": "To configure Answer span prediction feature."
},
"includeUnstructuredSources": {
"type": "boolean",
"description": "(Optional) Flag to enable Query over Unstructured Sources."
}
}
},
"AnswersResult": {
"type": "object",
"description": "Represents List of Question Answers.",
"properties": {
"answers": {
"type": "array",
"description": "Represents Answer Result list.",
"items": {
"$ref": "#/definitions/KnowledgeBaseAnswer"
}
}
}
},
"AreaResolution": {
"type": "object",
"description": "Represents the area entity resolution model.",
"properties": {
"value": {
"type": "number",
"format": "double",
"description": "The numeric value that the extracted text denotes."
},
"unit": {
"$ref": "#/definitions/AreaUnit",
"description": "The area Unit of measurement"
}
},
"required": [
"value",
"unit"
],
"allOf": [
{
"$ref": "#/definitions/BaseResolution"
}
],
"x-ms-discriminator-value": "AreaResolution"
},
"AreaUnit": {
"type": "string",
"description": "The area unit of measurement.",
"enum": [
"Unspecified",
"SquareKilometer",
"SquareHectometer",
"SquareDecameter",
"SquareDecimeter",
"SquareMeter",
"SquareCentimeter",
"SquareMillimeter",
"SquareInch",
"SquareFoot",
"SquareMile",
"SquareYard",
"Acre"
],
"x-ms-enum": {
"name": "AreaUnit",
"modelAsString": true,
"values": [
{
"name": "Unspecified",
"value": "Unspecified",
"description": "Unspecified area unit"
},
{
"name": "SquareKilometer",
"value": "SquareKilometer",
"description": "Square kilometer area unit"
},
{
"name": "SquareHectometer",
"value": "SquareHectometer",
"description": "Square hectometer area unit"
},
{
"name": "SquareDecameter",
"value": "SquareDecameter",
"description": "Square decameter area unit"
},
{
"name": "SquareDecimeter",
"value": "SquareDecimeter",
"description": "Square decimeter area unit"
},
{
"name": "SquareMeter",
"value": "SquareMeter",
"description": "Square meter area unit"
},
{
"name": "SquareCentimeter",
"value": "SquareCentimeter",
"description": "Square centimeter area unit"
},
{
"name": "SquareMillimeter",
"value": "SquareMillimeter",
"description": "Square millimeter area unit"
},
{
"name": "SquareInch",
"value": "SquareInch",
"description": "Square inch area unit"
},
{
"name": "SquareFoot",
"value": "SquareFoot",
"description": "Square foot area unit"
},
{
"name": "SquareMile",
"value": "SquareMile",
"description": "Square mile area unit"
},
{
"name": "SquareYard",
"value": "SquareYard",
"description": "Square yard area unit"
},
{
"name": "Acre",
"value": "Acre",
"description": "Acre area unit"
}
]
}
},
"AudioTiming": {
"type": "object",
"description": "Audio timing information.",
"properties": {
"offset": {
"type": "integer",
"format": "int64",
"description": "Offset from the start of speech audio, in ticks. 1 tick = 100 nanoseconds."
},
"duration": {
"type": "integer",
"format": "int64",
"description": "Duration of word articulation, in ticks. 1 tick = 100 nanoseconds."
}
}
},
"Azure.Core.uuid": {
"type": "string",
"format": "uuid",
"description": "Universally Unique Identifier"
},
"BaseExtraInformation": {
"type": "object",
"description": "The abstract base object for entity extra information.",
"properties": {
"extraInformationKind": {
"$ref": "#/definitions/ExtraInformationKind",
"description": "The extra information object kind."
}
},
"discriminator": "extraInformationKind",
"required": [
"extraInformationKind"
]
},
"BasePrediction": {
"type": "object",
"description": "This is the base class of prediction",
"properties": {
"projectKind": {
"$ref": "#/definitions/projectKind",
"description": "The type of the project."
},
"topIntent": {
"type": "string",
"description": "The intent with the highest score."
}
},
"discriminator": "projectKind",
"required": [
"projectKind"
]
},
"BaseResolution": {
"type": "object",
"description": "The abstract base class for entity resolutions.",
"properties": {
"resolutionKind": {
"$ref": "#/definitions/ResolutionKind",
"description": "The entity resolution object kind."
}
},
"discriminator": "resolutionKind",
"required": [
"resolutionKind"
]
},
"BooleanResolution": {
"type": "object",
"description": "A resolution for boolean expressions",
"properties": {
"value": {
"type": "boolean",
"description": "A resolution for boolean expressions"
}
},
"required": [
"value"
],
"allOf": [
{
"$ref": "#/definitions/BaseResolution"
}
],
"x-ms-discriminator-value": "BooleanResolution"
},
"Conversation": {
"type": "object",