changedOutput schema / (root)
Previous value: -nullNew value: +{
+ "additionalProperties": true,
+ "properties": {
+ "_disclaimer": {
+ "type": "string"
+ },
+ "agent_action": {
+ "description": "Derived directly from verdict",
+ "enum": [
+ "ALLOW",
+ "FLAG_AND_PROCEED",
+ "BLOCK"
+ ],
+ "type": "string"
+ },
+ "ai_confidence": {
+ "type": [
+ "string",
+ "null"
+ ]
+ },
+ "analysis_type": {
+ "type": "string"
+ },
+ "checked_at": {
+ "format": "date-time",
+ "type": "string"
+ },
+ "database_signals": {
+ "type": "object"
+ },
+ "domain_age_days": {
+ "type": [
+ "number",
+ "null"
+ ]
+ },
+ "domain_registered": {
+ "type": [
+ "string",
+ "null"
+ ]
+ },
+ "escalation_path": {
+ "description": "Present only when verdict is SUSPICIOUS",
+ "type": "string"
+ },
+ "hold_reason": {
+ "description": "Present only when verdict is SUSPICIOUS",
+ "type": "string"
+ },
+ "hostname": {
+ "type": "string"
+ },
+ "reasoning": {
+ "type": "string"
+ },
+ "redirect_chain_detected": {
+ "type": "boolean"
+ },
+ "retry_after": {
+ "type": [
+ "number",
+ "null"
+ ]
+ },
+ "source_url": {
+ "type": "string"
+ },
+ "ssl_valid": {
+ "type": "boolean"
+ },
+ "threat_categories": {
+ "items": {
+ "type": "string"
+ },
+ "type": "array"
+ },
+ "trust_score": {
+ "maximum": 100,
+ "minimum": 0,
+ "type": "number"
+ },
+ "url": {
+ "type": "string"
+ },
+ "verdict": {
+ "enum": [
+ "SAFE",
+ "SUSPICIOUS",
+ "DANGEROUS"
+ ],
+ "type": "string"
+ }
+ },
+ "required": [
+ "url",
+ "hostname",
+ "verdict",
+ "agent_action",
+ "trust_score",
+ "checked_at",
+ "_disclaimer"
+ ],
+ "type": "object"
+}