Adyen · Schema

POISystemData

POISystemData schema from Adyen API

PaymentsFinancial ServicesFintech

Properties

Name Type Description
DateTime string
POISoftware object
POITerminalData object
POIStatus object
View JSON Schema on GitHub

JSON Schema

terminal-poi-system-data-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-poi-system-data-schema.json",
  "title": "POISystemData",
  "description": "POISystemData schema from Adyen API",
  "type": "object",
  "properties": {
    "DateTime": {
      "type": "string",
      "format": "date-time"
    },
    "POISoftware": {
      "$ref": "#/components/schemas/POISoftware"
    },
    "POITerminalData": {
      "$ref": "#/components/schemas/POITerminalData"
    },
    "POIStatus": {
      "$ref": "#/components/schemas/POIStatus"
    }
  },
  "required": [
    "DateTime",
    "POISoftware"
  ]
}