Row
行ごとにデータを報告します。たとえば、RunReportRequest に次の内容が含まれているとします。
"dimensions": [
{
"name": "eventName"
},
{
"name": "countryId"
}
],
"metrics": [
{
"name": "eventCount"
}
]
eventName が「in_app_purchase」、countryId が「JP」、eventCount が 15 の 1 行は次のようになります。
"dimensionValues": [
{
"value": "in_app_purchase"
},
{
"value": "JP"
}
],
"metricValues": [
{
"value": "15"
}
]
フィールド |
dimensionValues[] |
object (DimensionValue )
リクエストされたディメンション値のリスト。PivotReport では、ピボットに含まれるディメンションのディメンション値のみがリストされます。
|
metricValues[] |
object (MetricValue )
リクエストされた表示中の指標値のリスト。
|
MetricValue
JSON 表現 |
{
// Union field one_value can be only one of the following:
"value": string
// End of list of possible types for union field one_value .
} |
フィールド |
共用体フィールド one_value 。指標値 one_value は、次のいずれか 1 つにする必要があります。 |
value |
string
測定値。タイプについては、MetricHeader をご覧ください。
|
特に記載のない限り、このページのコンテンツはクリエイティブ・コモンズの表示 4.0 ライセンスにより使用許諾されます。コードサンプルは Apache 2.0 ライセンスにより使用許諾されます。詳しくは、Google Developers サイトのポリシーをご覧ください。Java は Oracle および関連会社の登録商標です。
最終更新日 2024-11-22 UTC。
[null,null,["最終更新日 2024-11-22 UTC。"],[[["Report data is structured in rows, with each row containing dimension values and corresponding metric values."],["Dimension values represent categories or attributes, like 'eventName' or 'countryId', while metric values represent quantitative data, like 'eventCount'."],["The structure of the report allows for flexible data exploration by combining different dimensions and metrics."],["Metric values can be of various types, including but not limited to string type and are stored under the 'one_value' field as a 'value' entry."]]],["The document outlines data structures for reporting, using JSON. A row contains `dimensionValues` and `metricValues`. `dimensionValues` lists dimension data, while `metricValues` shows metric data. For example, with dimensions like `eventName` and `countryId`, and a metric like `eventCount`, a row might show \"in_app_purchase\" (event), \"JP\" (country), and \"15\" (count). `MetricValue` stores a metric's value as a string. A `MetricValue` can only contain one value, as specified in the union `one_value`.\n"]]