Structured response bodyBody structurat al răspunsului
application/json
Structured response bodyBody structurat al răspunsului
Complete response schemaSchema completă a răspunsului
{
"$ref": "#/components/schemas/AnalyticsFailureContributorPage",
"type": "object",
"additionalProperties": false,
"required": [
"observed_at",
"group",
"items",
"next_cursor"
],
"properties": {
"observed_at": {
"type": "string",
"format": "date-time"
},
"group": {
"$ref": "#/components/schemas/AnalyticsErrorGroupFact",
"type": "object",
"description": "One non-additive scope/code fact. Groups may overlap; never sum them to derive distinct affected submissions.",
"additionalProperties": false,
"required": [
"scope",
"code",
"affected_submission_count",
"affected_node_count",
"submission_denominator",
"rate"
],
"properties": {
"scope": {
"type": "string",
"enum": [
"ingestion_rejection",
"processing_failure",
"blocked_dependency"
]
},
"code": {
"type": "string",
"minLength": 1,
"maxLength": 128
},
"affected_submission_count": {
"type": "integer",
"minimum": 0
},
"affected_node_count": {
"type": [
"integer",
"null"
],
"minimum": 0
},
"submission_denominator": {
"type": "integer",
"minimum": 0
},
"rate": {
"$ref": "#/components/schemas/AnalyticsDecisionRate",
"type": "object",
"additionalProperties": false,
"required": [
"numerator",
"denominator",
"value",
"availability",
"reason"
],
"properties": {
"numerator": {
"type": "integer",
"minimum": 0,
"maximum": 9007199254740991
},
"denominator": {
"type": "integer",
"minimum": 0,
"maximum": 9007199254740991
},
"value": {
"type": [
"number",
"null"
],
"minimum": 0,
"maximum": 1
},
"availability": {
"type": "string",
"enum": [
"available",
"unavailable"
]
},
"reason": {
"type": [
"string",
"null"
]
}
},
"oneOf": [
{
"properties": {
"availability": {
"const": "available"
},
"value": {
"type": "number"
},
"reason": {
"type": "null"
}
}
},
{
"properties": {
"availability": {
"const": "unavailable"
},
"value": {
"type": "null"
},
"reason": {
"type": "string",
"const": "no_submissions"
}
}
}
]
}
},
"oneOf": [
{
"properties": {
"scope": {
"const": "ingestion_rejection"
},
"code": {
"type": "string",
"minLength": 1,
"maxLength": 128,
"pattern": "^[a-z0-9]+(?:_[a-z0-9]+)*$"
},
"affected_node_count": {
"type": "null"
}
}
},
{
"properties": {
"scope": {
"enum": [
"processing_failure",
"blocked_dependency"
]
},
"code": {
"type": "string",
"minLength": 1,
"maxLength": 64,
"pattern": "^[a-z][a-z0-9_.-]{0,63}$"
},
"affected_node_count": {
"type": "integer",
"minimum": 0
}
}
}
]
},
"items": {
"type": "array",
"maxItems": 100,
"items": {
"allOf": [
{
"$ref": "#/components/schemas/AnalyticsContributor",
"type": "object",
"additionalProperties": false,
"required": [
"kind",
"submission_id",
"submission_path"
],
"properties": {
"kind": {
"type": "string",
"enum": [
"ingestion_submission",
"processing_node",
"blocked_node"
]
},
"submission_id": {
"type": "string",
"format": "uuid"
},
"submission_path": {
"type": "string",
"pattern": "^/api/v1/submissions/[0-9a-f-]{36}$"
},
"processing_node_id": {
"type": "string",
"format": "uuid"
},
"processing_node_address": {
"type": "string",
"minLength": 3,
"maxLength": 1024
},
"element_path": {
"type": "string",
"pattern": "^/api/v1/submissions/[0-9a-f-]{36}/elements/[0-9a-f-]{36}$"
},
"execution_id": {
"type": "string",
"format": "uuid"
},
"execution_path": {
"type": "string",
"pattern": "^/api/v1/executions/[0-9a-f-]{36}$"
},
"contribution_duration_ms": {
"type": "integer",
"minimum": 0
}
},
"oneOf": [
{
"properties": {
"kind": {
"const": "ingestion_submission"
}
},
"not": {
"anyOf": [
{
"required": [
"processing_node_id"
]
},
{
"required": [
"processing_node_address"
]
},
{
"required": [
"element_path"
]
},
{
"required": [
"execution_id"
]
},
{
"required": [
"execution_path"
]
}
]
}
},
{
"properties": {
"kind": {
"const": "processing_node"
}
},
"required": [
"processing_node_id",
"processing_node_address",
"element_path",
"execution_id",
"execution_path"
]
},
{
"properties": {
"kind": {
"const": "blocked_node"
}
},
"required": [
"processing_node_id",
"processing_node_address",
"element_path"
],
"not": {
"anyOf": [
{
"required": [
"execution_id"
]
},
{
"required": [
"execution_path"
]
}
]
}
}
]
},
{
"not": {
"required": [
"contribution_duration_ms"
]
}
}
]
}
},
"next_cursor": {
"type": [
"string",
"null"
],
"minLength": 45,
"maxLength": 512,
"pattern": "^[A-Za-z0-9_-]+[.][A-Za-z0-9_-]{43}$"
}
}
}{
"observed_at": "2026-08-01T10:00:00Z",
"group": {
"scope": "ingestion_rejection",
"code": "synthetic_example",
"affected_submission_count": 0,
"affected_node_count": null,
"submission_denominator": 0,
"rate": {
"numerator": 0,
"denominator": 0,
"value": 1,
"availability": "available",
"reason": null
}
},
"items": [
{
"kind": "ingestion_submission",
"submission_id": "11111111-1111-4111-8111-000000000001",
"submission_path": "/api/v1/submissions/11111111-1111-4111-8111-111111111111"
}
],
"next_cursor": null
}