Adyen · Schema

POISoftware

PaymentsFinancial ServicesFintech

Properties

Name Type Description
ManufacturerID string
ApplicationName string
SoftwareVersion string
CertificationCode string
View JSON Schema on GitHub

JSON Schema

adyen-poisoftware-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/POISoftware",
  "title": "POISoftware",
  "type": "object",
  "properties": {
    "ManufacturerID": {
      "type": "string",
      "pattern": "^.+$"
    },
    "ApplicationName": {
      "type": "string",
      "pattern": "^.+$"
    },
    "SoftwareVersion": {
      "type": "string",
      "pattern": "^.+$"
    },
    "CertificationCode": {
      "type": "string",
      "pattern": "^.+$"
    }
  },
  "required": [
    "ManufacturerID",
    "ApplicationName",
    "SoftwareVersion",
    "CertificationCode"
  ]
}