API Schema
Echo content analysis
Schema EchoContentAnalysis from echo catalog registry.
Schema
{
"type": "object",
"required": [
"id",
"contentItemId",
"canonicalUrl",
"runtimeMode",
"policy",
"findings",
"revenue"
],
"properties": {
"id": {
"type": "string"
},
"contentItemId": {
"type": "string"
},
"canonicalUrl": {
"type": "string",
"format": "uri"
},
"runtimeMode": {
"type": "string",
"enum": [
"validation_only"
]
},
"urlProfile": {
"type": "object"
},
"localSignals": {
"type": "object"
},
"fingerprint": {
"type": "object"
},
"policy": {
"type": "object",
"properties": {
"externalFetchExecuted": {
"const": false
},
"providerCallsExecuted": {
"const": false
},
"findingsGenerated": {
"const": false
},
"revenueEstimated": {
"const": false
}
}
},
"findings": {
"type": "array",
"maxItems": 0
},
"revenue": {
"type": "object",
"properties": {
"status": {
"const": "not_evaluated"
}
}
}
}
}