{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "https://raw.githubusercontent.com/api-evangelist/avalanche/main/json-schema/ValidatorHealthDetails.json", "title": "ValidatorHealthDetails", "type": "object", "properties": { "reachabilityPercent": { "type": "number", "description": "Percent of requests responded to in last polling." }, "benchedPChainRequestsPercent": { "type": "number", "description": "Percent of requests benched on the P-Chain in last polling." }, "benchedXChainRequestsPercent": { "type": "number", "description": "Percentage of requests benched on the X-Chain in last polling." }, "benchedCChainRequestsPercent": { "type": "number", "description": "Percentage of requests benched on the C-Chain in last polling." } }, "required": [ "reachabilityPercent", "benchedPChainRequestsPercent", "benchedXChainRequestsPercent", "benchedCChainRequestsPercent" ] }