changedOutput schema / (root)
Previous value: -nullNew value: +{
+ "additionalProperties": true,
+ "description": "Paid token-risk analysis result. Exact evidence fields depend on the selected chain and available provider coverage.",
+ "properties": {
+ "address": {
+ "description": "Token mint or contract address analyzed.",
+ "type": "string"
+ },
+ "chain": {
+ "description": "Blockchain analyzed.",
+ "enum": [
+ "solana",
+ "base"
+ ],
+ "type": "string"
+ },
+ "confidence": {
+ "additionalProperties": true,
+ "description": "Evidence confidence and coverage information.",
+ "properties": {
+ "coverage_percent": {
+ "description": "Percentage of expected evidence covered when available.",
+ "maximum": 100,
+ "minimum": 0,
+ "type": "number"
+ }
+ },
+ "type": "object"
+ },
+ "metadata": {
+ "additionalProperties": true,
+ "description": "Analysis provenance and execution metadata.",
+ "type": "object"
+ },
+ "risk": {
+ "additionalProperties": true,
+ "description": "Risk assessment generated from available on-chain and market evidence.",
+ "properties": {
+ "level": {
+ "description": "Machine-readable risk level when available.",
+ "type": "string"
+ },
+ "score": {
+ "description": "Normalized risk score when available.",
+ "type": "number"
+ }
+ },
+ "type": "object"
+ },
+ "success": {
+ "description": "Whether the analysis request completed successfully.",
+ "type": "boolean"
+ }
+ },
+ "type": "object"
+}