Record containing a honk. Who are we kidding. Honks should not be contained.
tid
Timestamp-based ID
Properties
createdAt
string
datetime
Required
An RFC 3339 formatted timestamp.
event
string
Required
The default setting for this label.
#honkAngry, #honkChaotic, #honkDefensive, #honkHappy, #honkInquisitive, #honkNoisyhonkHappysignature
bytes
Required
The signature of the honk. This is used to verify the authenticity of the honk coming from the honks.app service.
signatureKey
string
did
Required
DID of the key used to sign the honk.
subject
string
did
Optional
DID of the account to be honked at.
View raw schema
{
"key": "tid",
"type": "record",
"record": {
"type": "object",
"required": [
"did",
"event",
"createdAt",
"signature",
"signatureKey"
],
"properties": {
"event": {
"type": "string",
"default": "honkHappy",
"description": "The default setting for this label.",
"knownValues": [
"#honkAngry",
"#honkChaotic",
"#honkDefensive",
"#honkHappy",
"#honkInquisitive",
"#honkNoisy"
]
},
"subject": {
"type": "string",
"format": "did",
"description": "DID of the account to be honked at."
},
"createdAt": {
"type": "string",
"format": "datetime"
},
"signature": {
"type": "bytes",
"description": "The signature of the honk. This is used to verify the authenticity of the honk coming from the honks.app service."
},
"signatureKey": {
"type": "string",
"format": "did",
"description": "DID of the key used to sign the honk."
}
}
},
"description": "Record containing a honk. Who are we kidding. Honks should not be contained."
}