Version info for a single lexicon.
Record Key
tid
Timestamp-based ID
Properties
changelog
array
of
ref
at.adsb.version.defs#changelogEntry
Required
History of changes, most recent first.
maxLength: 100 itemscreatedAt
string
datetime
Required
An RFC 3339 formatted timestamp.
nsid
string
Required
The NSID of the lexicon this version info applies to (e.g. 'at.adsb.receiver.station').
maxLength: 256 bytesrevision
ref
at.adsb.version.defs#revision
Required
Current version of the lexicon.
View raw schema
{
"key": "tid",
"type": "record",
"record": {
"type": "object",
"required": [
"nsid",
"revision",
"changelog",
"createdAt"
],
"properties": {
"nsid": {
"type": "string",
"maxLength": 256,
"description": "The NSID of the lexicon this version info applies to (e.g. 'at.adsb.receiver.station')."
},
"revision": {
"ref": "at.adsb.version.defs#revision",
"type": "ref",
"description": "Current version of the lexicon."
},
"changelog": {
"type": "array",
"items": {
"ref": "at.adsb.version.defs#changelogEntry",
"type": "ref"
},
"maxLength": 100,
"description": "History of changes, most recent first."
},
"createdAt": {
"type": "string",
"format": "datetime"
}
}
},
"description": "Version info for a single lexicon."
}