A receiver that contributed data to a flight sighting.
Properties
did
string
did
Required
DID of the contributing receiver account.
firstSeen
string
datetime
Optional
When this receiver first observed the aircraft.
lastSeen
string
datetime
Optional
When this receiver last observed the aircraft.
positionCount
integer
Optional
Number of position reports this receiver contributed.
minimum: 0sighting
ref
com.atproto.repo.strongRef
Optional
Strong reference to the contributor's at.adsb.receiver.sighting record for this aircraft.
station
ref
com.atproto.repo.strongRef
Optional
Strong reference to the contributor's at.adsb.receiver.station record.
View raw schema
{
"type": "object",
"required": [
"did"
],
"properties": {
"did": {
"type": "string",
"format": "did",
"description": "DID of the contributing receiver account."
},
"station": {
"ref": "com.atproto.repo.strongRef",
"type": "ref",
"description": "Strong reference to the contributor's at.adsb.receiver.station record."
},
"lastSeen": {
"type": "string",
"format": "datetime",
"description": "When this receiver last observed the aircraft."
},
"sighting": {
"ref": "com.atproto.repo.strongRef",
"type": "ref",
"description": "Strong reference to the contributor's at.adsb.receiver.sighting record for this aircraft."
},
"firstSeen": {
"type": "string",
"format": "datetime",
"description": "When this receiver first observed the aircraft."
},
"positionCount": {
"type": "integer",
"minimum": 0,
"description": "Number of position reports this receiver contributed."
}
},
"description": "A receiver that contributed data to a flight sighting."
}