The key of the incident.
Record Key
tid
Timestamp-based ID
Properties
components
array
of
ref
com.atproto.repo.strongRef
Optional
What the incident affects, as component records.
maxLength: 32 itemscreatedAt
string
datetime
Required
When the incident is opened.
description
string
Optional
Additional details and information about the incident.
maxLength: 3000 bytesmaxGraphemes: 1000 graphemesendsAt
string
datetime
Optional
When the incident ended. Absent implies it is ongoing unless otherwise noted.
name
string
Required
A brief one-line summary of what is wrong.
maxLength: 640 bytesmaxGraphemes: 64 graphemesseverity
string
Required
The severity of the incident
maxLength: 64 bytesKnown values:
minor, majorstartsAt
string
datetime
Required
When the incident started, or was first observed or reported.
updates
array
of
ref
#update
Required
The incident timeline.
maxLength: 128 itemsminLength: 1 itemsView raw schema
{
"key": "tid",
"type": "record",
"record": {
"type": "object",
"required": [
"name",
"severity",
"startsAt",
"updates",
"createdAt"
],
"properties": {
"name": {
"type": "string",
"maxLength": 640,
"description": "A brief one-line summary of what is wrong.",
"maxGraphemes": 64
},
"endsAt": {
"type": "string",
"format": "datetime",
"description": "When the incident ended. Absent implies it is ongoing unless otherwise noted."
},
"updates": {
"type": "array",
"items": {
"ref": "#update",
"type": "ref"
},
"maxLength": 128,
"minLength": 1,
"description": "The incident timeline."
},
"severity": {
"type": "string",
"maxLength": 64,
"description": "The severity of the incident",
"knownValues": [
"minor",
"major"
]
},
"startsAt": {
"type": "string",
"format": "datetime",
"description": "When the incident started, or was first observed or reported."
},
"createdAt": {
"type": "string",
"format": "datetime",
"description": "When the incident is opened."
},
"components": {
"type": "array",
"items": {
"ref": "com.atproto.repo.strongRef",
"type": "ref"
},
"maxLength": 32,
"description": "What the incident affects, as component records."
},
"description": {
"type": "string",
"maxLength": 3000,
"description": "Additional details and information about the incident.",
"maxGraphemes": 1000
}
}
},
"description": "The key of the incident."
}