Logs account status related events on a repo subject. Normally captured by automod from the firehose and emitted to ozone for historical tracking.
Properties
active
boolean
Required
Indicates that the account has a repository which can be fetched from the host that emitted this event.
comment
string
Optional
No description available.
status
string
Optional
No description available.
unknown, deactivated, deleted, takendown, suspended, tombstonedtimestamp
string
datetime
Required
An RFC 3339 formatted timestamp.
View raw schema
{
"type": "object",
"required": [
"timestamp",
"active"
],
"properties": {
"active": {
"type": "boolean",
"description": "Indicates that the account has a repository which can be fetched from the host that emitted this event."
},
"status": {
"type": "string",
"knownValues": [
"unknown",
"deactivated",
"deleted",
"takendown",
"suspended",
"tombstoned"
]
},
"comment": {
"type": "string"
},
"timestamp": {
"type": "string",
"format": "datetime"
}
},
"description": "Logs account status related events on a repo subject. Normally captured by automod from the firehose and emitted to ozone for historical tracking."
}