Adyen · JSON Structure

Terminal Utm Coordinates Structure

UTMCoordinates schema from Adyen API

Type: object Properties: 3 Required: 3
PaymentsFinancial ServicesFintech

UTMCoordinates is a JSON Structure definition published by Adyen, describing 3 properties, of which 3 are required. It conforms to the https://json-structure.org/meta/core/v0/# meta-schema.

Properties

UTMZone UTMEastward UTMNorthward

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/adyen/refs/heads/main/json-structure/terminal-utm-coordinates-structure.json",
  "description": "UTMCoordinates schema from Adyen API",
  "type": "object",
  "properties": {
    "UTMZone": {
      "type": "string",
      "pattern": "^.+$"
    },
    "UTMEastward": {
      "type": "string",
      "pattern": "^.+$"
    },
    "UTMNorthward": {
      "type": "string",
      "pattern": "^.+$"
    }
  },
  "required": [
    "UTMZone",
    "UTMEastward",
    "UTMNorthward"
  ],
  "name": "UTMCoordinates"
}