Amazon Pinpoint · JSON Structure

Amazon Pinpoint Gps Point Dimension Structure

Specifies GPS-based criteria for including or excluding endpoints from a segment.

Type: object Properties: 2 Required: 1
CampaignsCommunicationsEmailMarketingMessagingPush NotificationsSMSVoiceCustomer EngagementSegmentationJourneysAnalytics

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

Properties

Coordinates RangeInKilometers

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-gps-point-dimension-structure.json",
  "name": "GPSPointDimension",
  "description": "Specifies GPS-based criteria for including or excluding endpoints from a segment.",
  "type": "object",
  "properties": {
    "Coordinates": {
      "allOf": [
        {
          "$ref": "#/components/schemas/GPSCoordinates"
        },
        {
          "description": "The GPS coordinates to measure distance from."
        }
      ]
    },
    "RangeInKilometers": {
      "allOf": [
        {
          "$ref": "#/components/schemas/__double"
        },
        {
          "description": "The range, in kilometers, from the GPS coordinates."
        }
      ]
    }
  },
  "required": [
    "Coordinates"
  ]
}