EvalMatrixResponse
Properties
| Property | Type | Required | Description |
generated_at |
string |
Yes |
|
matrix |
object |
Yes |
|
total_signals |
integer |
Yes |
|
View JSON Schema
{
"type": "object",
"required": [
"matrix",
"generated_at",
"total_signals"
],
"properties": {
"generated_at": {
"type": "string",
"format": "date-time"
},
"matrix": {
"type": "object",
"additionalProperties": {
"type": "object",
"additionalProperties": {
"$ref": "#/components/schemas/EvalMatrixEntry"
},
"propertyNames": {
"type": "string"
}
},
"propertyNames": {
"type": "string"
}
},
"total_signals": {
"type": "integer",
"format": "int64"
}
}
}