Adyen · Schema

Point

Point schema from Adyen API

PaymentsFinancial ServicesFintech

Properties

Name Type Description
X string
Y string
View JSON Schema on GitHub

JSON Schema

terminal-point-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/adyen/refs/heads/main/json-schema/terminal-point-schema.json",
  "title": "Point",
  "description": "Point schema from Adyen API",
  "type": "object",
  "properties": {
    "X": {
      "type": "string"
    },
    "Y": {
      "type": "string"
    }
  },
  "required": [
    "X",
    "Y"
  ]
}