Adyen · Schema

DiagnosisResponse

It conveys the result of the requested diagnosis and a possible message to display on a logical device. Content of the Diagnosis Response message.

PaymentsFinancial ServicesFintech

Properties

Name Type Description
Response object
LoggedSaleID array
POIStatus object
HostStatus array
View JSON Schema on GitHub

JSON Schema

adyen-diagnosisresponse-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/DiagnosisResponse",
  "title": "DiagnosisResponse",
  "type": "object",
  "description": "It conveys the result of the requested diagnosis and a possible message to display on a logical device. Content of the Diagnosis Response message.",
  "properties": {
    "Response": {
      "$ref": "#/components/schemas/Response"
    },
    "LoggedSaleID": {
      "type": "array",
      "items": {
        "type": "string",
        "pattern": "^.+$",
        "description": "If Sale Terminal logged to this POI Terminal."
      }
    },
    "POIStatus": {
      "$ref": "#/components/schemas/POIStatus"
    },
    "HostStatus": {
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/HostStatus"
      }
    }
  },
  "required": [
    "Response"
  ]
}