{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/HostStatus", "title": "HostStatus", "type": "object", "description": "Indicate the reachability of the host by the POI Terminal. State of a Host.", "properties": { "AcquirerID": { "type": "integer", "description": "Identification of the Acquirer." }, "IsReachableFlag": { "type": "boolean", "default": true, "description": "Indicate if a Host is reachable." } }, "required": [ "AcquirerID" ] }