- JSON representation
- IssueDimensionMetadata
- AgentDimensionMetadata
- QaQuestionDimensionMetadata
- QaQuestionAnswerDimensionMetadata
- ConversationProfileDimensionMetadata
A dimension determines the grouping key for the query. In SQL terms, these would be part of both the "SELECT" and "GROUP BY" clauses.
JSON representation |
---|
{ "dimensionKey": enum ( |
Fields | |
---|---|
dimension |
The key of the dimension. |
Union field dimension_metadata . Output-only metadata about the dimension. dimension_metadata can be only one of the following: |
|
issue |
Output only. Metadata about the issue dimension. |
agent |
Output only. Metadata about the agent dimension. |
qa |
Output only. Metadata about the QA question dimension. |
qa |
Output only. Metadata about the QA question-answer dimension. |
conversation |
Output only. Metadata about the conversation profile dimension. |
IssueDimensionMetadata
Metadata about the issue dimension.
JSON representation |
---|
{ "issueId": string, "issueDisplayName": string, "issueModelId": string } |
Fields | |
---|---|
issue |
The issue ID. |
issue |
The issue display name. |
issue |
The parent issue model ID. |
AgentDimensionMetadata
Metadata about the agent dimension.
JSON representation |
---|
{ "agentId": string, "agentDisplayName": string, "agentTeam": string } |
Fields | |
---|---|
agent |
Optional. A user-specified string representing the agent. |
agent |
Optional. The agent's name |
agent |
Optional. A user-specified string representing the agent's team. |
QaQuestionDimensionMetadata
Metadata about the QA question dimension.
JSON representation |
---|
{ "qaScorecardId": string, "qaQuestionId": string, "questionBody": string } |
Fields | |
---|---|
qa |
Optional. The QA scorecard ID. |
qa |
Optional. The QA question ID. |
question |
Optional. The full body of the question. |
QaQuestionAnswerDimensionMetadata
Metadata about the QA question-answer dimension. This is useful for showing the answer distribution for questions for a given scorecard.
JSON representation |
---|
{ "qaScorecardId": string, "qaQuestionId": string, "questionBody": string, "answerValue": string } |
Fields | |
---|---|
qa |
Optional. The QA scorecard ID. |
qa |
Optional. The QA question ID. |
question |
Optional. The full body of the question. |
answer |
Optional. The full body of the question. |
ConversationProfileDimensionMetadata
Metadata about the conversation profile dimension.
JSON representation |
---|
{ "conversationProfileId": string } |
Fields | |
---|---|
conversation |
Optional. The conversation profile ID. |