Adyen · Schema

UTMCoordinates

PaymentsFinancial ServicesFintech

Properties

Name Type Description
UTMZone string
UTMEastward string
UTMNorthward string
View JSON Schema on GitHub

JSON Schema

adyen-utmcoordinates-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/UTMCoordinates",
  "title": "UTMCoordinates",
  "type": "object",
  "properties": {
    "UTMZone": {
      "type": "string",
      "pattern": "^.+$"
    },
    "UTMEastward": {
      "type": "string",
      "pattern": "^.+$"
    },
    "UTMNorthward": {
      "type": "string",
      "pattern": "^.+$"
    }
  },
  "required": [
    "UTMZone",
    "UTMEastward",
    "UTMNorthward"
  ]
}