Amazon Pinpoint · JSON Structure

Amazon Pinpoint Result Row Structure

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: 2 Required: 2
CampaignsCommunicationsEmailMarketingMessagingPush NotificationsSMSVoiceCustomer EngagementSegmentationJourneysAnalytics

ResultRow is a JSON Structure definition published by Amazon Pinpoint, describing 2 properties, of which 2 are required. It conforms to the https://json-structure.org/meta/core/v0/# meta-schema.

Properties

GroupedBys Values

Meta-schema: https://json-structure.org/meta/core/v0/#

JSON Structure

Raw ↑
{
  "$schema": "https://json-structure.org/meta/core/v0/#",
  "$id": "https://raw.githubusercontent.com/api-evangelist/amazon-pinpoint/refs/heads/main/json-structure/amazon-pinpoint-result-row-structure.json",
  "name": "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"
  ]
}