{ "$schema": "https://json-structure.org/meta/core/v0/#", "$id": "https://raw.githubusercontent.com/api-evangelist/unitedhealthcare/refs/heads/main/json-structure/provider-claim-pre-check-response-structure.json", "name": "UnitedHealthcare Claim Pre-Check Response", "type": "object", "description": "Claim pre-check validation result with errors and estimated payment", "fields": [ { "name": "validationStatus", "type": "string", "description": "Validation status", "enum": [ "VALID", "ERRORS", "WARNINGS" ] }, { "name": "errors", "type": "array", "description": "Validation errors", "items": { "type": "object" } }, { "name": "warnings", "type": "array", "description": "Validation warnings", "items": { "type": "object" } }, { "name": "estimatedPayment", "type": "decimal", "description": "Estimated payment if valid" } ] }