changedOutput schema / (root)
Previous value: -nullNew value: +{
+ "additionalProperties": true,
+ "properties": {
+ "_disclaimer": {
+ "type": "string"
+ },
+ "analysis_type": {
+ "type": "string"
+ },
+ "applicable_regulations": {
+ "items": {
+ "type": "string"
+ },
+ "type": "array"
+ },
+ "checked_at": {
+ "format": "date-time",
+ "type": "string"
+ },
+ "confidence": {
+ "enum": [
+ "HIGH",
+ "MEDIUM",
+ "LOW"
+ ],
+ "type": "string"
+ },
+ "credential_check": {
+ "type": [
+ "object",
+ "null"
+ ]
+ },
+ "detected_categories": {
+ "items": {
+ "type": "string"
+ },
+ "type": "array"
+ },
+ "jurisdiction_detected": {
+ "type": [
+ "string",
+ "null"
+ ]
+ },
+ "patterns_detected": {
+ "items": {
+ "type": "string"
+ },
+ "type": "array"
+ },
+ "reasoning": {
+ "description": "Paid tier only -- gated to _reasoning_gated on free tier",
+ "type": "string"
+ },
+ "recommended_action": {
+ "type": "string"
+ },
+ "redaction_targets": {
+ "items": {
+ "type": "string"
+ },
+ "type": "array"
+ },
+ "sensitivity_level": {
+ "enum": [
+ "PUBLIC",
+ "INTERNAL",
+ "CONFIDENTIAL",
+ "RESTRICTED"
+ ],
+ "type": "string"
+ },
+ "source_url": {
+ "type": "string"
+ },
+ "verdict": {
+ "enum": [
+ "SAFE_TO_PROCESS",
+ "REDACT_BEFORE_PASSING",
+ "DO_NOT_STORE",
+ "ESCALATE"
+ ],
+ "type": "string"
+ }
+ },
+ "required": [
+ "verdict",
+ "sensitivity_level",
+ "checked_at",
+ "_disclaimer"
+ ],
+ "type": "object"
+}