SAP Commerce Cloud · Schema

GeoPoint

B2BB2CCommerceCustomer ExperienceEcommerceOmnichannelRetail

Properties

Name Type Description
latitude number Latitude
longitude number Longitude
View JSON Schema on GitHub

JSON Schema

sap-commerce-cloud-geopoint-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/GeoPoint",
  "title": "GeoPoint",
  "type": "object",
  "properties": {
    "latitude": {
      "type": "number",
      "format": "double",
      "description": "Latitude"
    },
    "longitude": {
      "type": "number",
      "format": "double",
      "description": "Longitude"
    }
  }
}