changedOutput schema / (root)
Previous value: -nullNew value: +{
+ "additionalProperties": true,
+ "properties": {
+ "_disclaimer": {
+ "type": "string"
+ },
+ "analysis_type": {
+ "type": "string"
+ },
+ "checked_at": {
+ "format": "date-time",
+ "type": "string"
+ },
+ "cloud_justified_reason": {
+ "description": "Non-null only when verdict is CLOUD",
+ "type": [
+ "string",
+ "null"
+ ]
+ },
+ "confidence": {
+ "enum": [
+ "HIGH",
+ "MEDIUM",
+ "LOW"
+ ],
+ "type": "string"
+ },
+ "data_sensitivity": {
+ "enum": [
+ "PUBLIC",
+ "INTERNAL",
+ "CONFIDENTIAL"
+ ],
+ "type": "string"
+ },
+ "data_sensitivity_override": {
+ "description": "Present only when data_sensitivity=CONFIDENTIAL forced a LOCAL verdict",
+ "type": "boolean"
+ },
+ "estimated_cost_saving": {
+ "type": "string"
+ },
+ "reason": {
+ "type": "string"
+ },
+ "recommended_local_models": {
+ "description": "Present when verdict is LOCAL or EITHER",
+ "items": {
+ "type": "string"
+ },
+ "type": "array"
+ },
+ "task_quality_threshold": {
+ "enum": [
+ "PRODUCTION",
+ "PROTOTYPE",
+ "BEST_EFFORT"
+ ],
+ "type": "string"
+ },
+ "verdict": {
+ "enum": [
+ "LOCAL",
+ "CLOUD",
+ "EITHER"
+ ],
+ "type": "string"
+ }
+ },
+ "required": [
+ "verdict",
+ "confidence",
+ "reason",
+ "checked_at",
+ "_disclaimer"
+ ],
+ "type": "object"
+}