validate_check
Validate a check configuration before creating it. Returns valid status or lists specific fields with errors to catch problems early.
Instructions
Dry-run validate a check config without creating the check. Returns {valid: true} on success or {valid: false, fields: [...]} listing the specific fields with errors. Use this before create_check when you've assembled a config from scratch or modified a sample, to catch problems early.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| type | Yes | Check type (e.g. "http", "dns", "tcp", "icmp", "ssl"). | |
| config | Yes | Check-specific config to validate (e.g., {"url": "https://example.com"}). |