Amazon Pinpoint · Schema

GPSCoordinates

Specifies the GPS coordinates of a location.

CampaignsCommunicationsEmailMarketingMessagingPush NotificationsSMSVoiceCustomer EngagementSegmentationJourneysAnalytics

Properties

Name Type Description
Latitude object
Longitude object
View JSON Schema on GitHub

JSON Schema

amazon-pinpoint-gps-coordinates-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-gps-coordinates-schema.json",
  "title": "GPSCoordinates",
  "description": "Specifies the GPS coordinates of a location.",
  "type": "object",
  "properties": {
    "Latitude": {
      "allOf": [
        {
          "$ref": "#/components/schemas/__double"
        },
        {
          "description": "The latitude coordinate of the location."
        }
      ]
    },
    "Longitude": {
      "allOf": [
        {
          "$ref": "#/components/schemas/__double"
        },
        {
          "description": "The longitude coordinate of the location."
        }
      ]
    }
  },
  "required": [
    "Latitude",
    "Longitude"
  ]
}