A periodic performance summary for a receiver station.
tid
Timestamp-based ID
Properties
aircraftSeen
integer
Required
Unique aircraft observed during the period.
minimum: 0createdAt
string
datetime
Required
An RFC 3339 formatted timestamp.
maxRangeNm
string
Optional
Furthest aircraft detected during the period, in nautical miles.
maxLength: 20 bytesmessagesReceived
integer
Required
Total messages decoded during the period.
minimum: 0periodEnd
string
datetime
Required
End of the reporting period (exclusive).
periodStart
string
datetime
Required
Start of the reporting period (inclusive).
positionsReported
integer
Optional
Position reports decoded during the period.
minimum: 0protocolBreakdown
array
of
ref
#protocolCount
Optional
Message counts by protocol, if the station receives multiple protocols.
maxLength: 10 itemssignalStats
ref
#signalSummary
Optional
Signal quality metrics for the period.
View raw schema
{
"key": "tid",
"type": "record",
"record": {
"type": "object",
"required": [
"periodStart",
"periodEnd",
"aircraftSeen",
"messagesReceived",
"createdAt"
],
"properties": {
"createdAt": {
"type": "string",
"format": "datetime"
},
"periodEnd": {
"type": "string",
"format": "datetime",
"description": "End of the reporting period (exclusive)."
},
"maxRangeNm": {
"type": "string",
"maxLength": 20,
"description": "Furthest aircraft detected during the period, in nautical miles."
},
"periodStart": {
"type": "string",
"format": "datetime",
"description": "Start of the reporting period (inclusive)."
},
"signalStats": {
"ref": "#signalSummary",
"type": "ref",
"description": "Signal quality metrics for the period."
},
"aircraftSeen": {
"type": "integer",
"minimum": 0,
"description": "Unique aircraft observed during the period."
},
"messagesReceived": {
"type": "integer",
"minimum": 0,
"description": "Total messages decoded during the period."
},
"positionsReported": {
"type": "integer",
"minimum": 0,
"description": "Position reports decoded during the period."
},
"protocolBreakdown": {
"type": "array",
"items": {
"ref": "#protocolCount",
"type": "ref"
},
"maxLength": 10,
"description": "Message counts by protocol, if the station receives multiple protocols."
}
}
},
"description": "A periodic performance summary for a receiver station."
}