{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "https://raw.githubusercontent.com/api-evangelist/adyen/refs/heads/main/json-schema/terminal-diagnosis-response-schema.json", "title": "DiagnosisResponse", "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.", "type": "object", "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" ] }