110 lines
2.2 KiB
JSON
110 lines
2.2 KiB
JSON
{
|
|
"$schema": "https://json-schema.org/draft/2020-12/schema",
|
|
"$id": "urn:awoooi:agent-nemotron-import-report-v1",
|
|
"title": "AWOOOI NeMo/Nemotron External Import Report (v1)",
|
|
"type": "object",
|
|
"required": [
|
|
"schema_version",
|
|
"candidate_id",
|
|
"external_results",
|
|
"imported_results",
|
|
"valid",
|
|
"failures",
|
|
"duplicate_results",
|
|
"missing_results",
|
|
"unexpected_results",
|
|
"external_error_records",
|
|
"fallback_used_records",
|
|
"incomplete_trace_records",
|
|
"total_cost_usd",
|
|
"avg_latency_ms",
|
|
"p95_latency_ms",
|
|
"model_distribution"
|
|
],
|
|
"properties": {
|
|
"schema_version": {
|
|
"type": "string",
|
|
"const": "agent_nemotron_import_report_v1"
|
|
},
|
|
"candidate_id": {
|
|
"type": "string",
|
|
"const": "nemo_nemotron_fabric"
|
|
},
|
|
"external_results": {
|
|
"type": "integer",
|
|
"minimum": 0
|
|
},
|
|
"imported_results": {
|
|
"type": "integer",
|
|
"minimum": 0
|
|
},
|
|
"requests": {
|
|
"type": ["integer", "null"],
|
|
"minimum": 0
|
|
},
|
|
"valid": {
|
|
"type": "boolean"
|
|
},
|
|
"failures": {
|
|
"type": "array",
|
|
"items": {
|
|
"type": "string"
|
|
}
|
|
},
|
|
"duplicate_results": {
|
|
"type": "array",
|
|
"items": {
|
|
"type": "string"
|
|
}
|
|
},
|
|
"missing_results": {
|
|
"type": "array",
|
|
"items": {
|
|
"type": "string"
|
|
}
|
|
},
|
|
"unexpected_results": {
|
|
"type": "array",
|
|
"items": {
|
|
"type": "string"
|
|
}
|
|
},
|
|
"external_error_records": {
|
|
"type": "integer",
|
|
"minimum": 0
|
|
},
|
|
"fallback_used_records": {
|
|
"type": "integer",
|
|
"minimum": 0
|
|
},
|
|
"incomplete_trace_records": {
|
|
"type": "integer",
|
|
"minimum": 0
|
|
},
|
|
"retry_used_records": {
|
|
"type": "integer",
|
|
"minimum": 0
|
|
},
|
|
"total_cost_usd": {
|
|
"type": "number",
|
|
"minimum": 0
|
|
},
|
|
"avg_latency_ms": {
|
|
"type": "number",
|
|
"minimum": 0
|
|
},
|
|
"p95_latency_ms": {
|
|
"type": "number",
|
|
"minimum": 0
|
|
},
|
|
"model_distribution": {
|
|
"type": "object",
|
|
"additionalProperties": {
|
|
"type": "integer",
|
|
"minimum": 0
|
|
}
|
|
}
|
|
},
|
|
"additionalProperties": false
|
|
}
|