{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "https://raw.githubusercontent.com/api-evangelist/adyen/refs/heads/main/json-schema/terminal-host-status-schema.json", "title": "HostStatus", "description": "Indicate the reachability of the host by the POI Terminal. State of a Host.", "type": "object", "properties": { "AcquirerID": { "type": "integer", "description": "Identification of the Acquirer." }, "IsReachableFlag": { "type": "boolean", "default": true, "description": "Indicate if a Host is reachable." } }, "required": [ "AcquirerID" ] }