A mod-approved patch representing changes to apply to an entity. Created on mod approval, deleted when the entity owner accepts and merges.
Record Key
tid
Timestamp-based ID
Properties
changes
unknown
Required
The approved changes to overlay on the entity.
contribution
ref
com.atproto.repo.strongRef
Required
No description available.
contributionReview
ref
com.atproto.repo.strongRef
Required
No description available.
createdAt
string
datetime
Required
An RFC 3339 formatted timestamp.
subject
string
at-uri
Optional
The entity these changes apply to. Absent for newGame contributions.
View raw schema
{
"key": "tid",
"type": "record",
"record": {
"type": "object",
"required": [
"contribution",
"contributionReview",
"changes",
"createdAt"
],
"properties": {
"changes": {
"type": "unknown",
"description": "The approved changes to overlay on the entity."
},
"subject": {
"type": "string",
"format": "at-uri",
"description": "The entity these changes apply to. Absent for newGame contributions."
},
"createdAt": {
"type": "string",
"format": "datetime"
},
"contribution": {
"ref": "com.atproto.repo.strongRef",
"type": "ref"
},
"contributionReview": {
"ref": "com.atproto.repo.strongRef",
"type": "ref"
}
}
},
"description": "A mod-approved patch representing changes to apply to an entity. Created on mod approval, deleted when the entity owner accepts and merges."
}