Adyen · Schema

GeographicCoordinates

PaymentsFinancial ServicesFintech

Properties

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

JSON Schema

adyen-geographiccoordinates-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/GeographicCoordinates",
  "title": "GeographicCoordinates",
  "type": "object",
  "properties": {
    "Latitude": {
      "type": "string",
      "pattern": "^.+$"
    },
    "Longitude": {
      "type": "string",
      "pattern": "^.+$"
    }
  },
  "required": [
    "Latitude",
    "Longitude"
  ]
}