Amazon Pinpoint · Schema

ResultRow

Provides the results of a query that retrieved the data for a standard metric that applies to an application, campaign, or journey.

CampaignsCommunicationsEmailMarketingMessagingPush NotificationsSMSVoiceCustomer EngagementSegmentationJourneysAnalytics

Properties

Name Type Description
GroupedBys object
Values object
View JSON Schema on GitHub

JSON Schema

amazon-pinpoint-result-row-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/amazon-pinpoint/refs/heads/main/json-schema/amazon-pinpoint-result-row-schema.json",
  "title": "ResultRow",
  "description": "Provides the results of a query that retrieved the data for a standard metric that applies to an application, campaign, or journey.",
  "type": "object",
  "properties": {
    "GroupedBys": {
      "allOf": [
        {
          "$ref": "#/components/schemas/ListOfResultRowValue"
        },
        {
          "description": "An array of objects that defines the field and field values that were used to group data in a result set that contains multiple results. This value is null if the data in a result set isn\u2019t grouped."
        }
      ]
    },
    "Values": {
      "allOf": [
        {
          "$ref": "#/components/schemas/ListOfResultRowValue"
        },
        {
          "description": "An array of objects that provides pre-aggregated values for a standard metric that applies to an application, campaign, or journey."
        }
      ]
    }
  },
  "required": [
    "GroupedBys",
    "Values"
  ]
}