Declares a submission by the record creator to the referenced round.
Record Key
tid
Timestamp-based ID
Properties
createdAt
string
datetime
Required
An RFC 3339 formatted timestamp.
note
string
Optional
Optional caption/description from the submitter.
maxLength: 3000 bytesmaxGraphemes: 300 graphemespayload
ref
com.atproto.repo.strongRef
Required
Strong-ref to the deliverable record on its native ATProto app. The referenced record's $type SHOULD appear in the round's acceptedSubmissionTypes.
round
ref
com.atproto.repo.strongRef
Required
Strong-ref to the at.atjam.round record being submitted to.
View raw schema
{
"key": "tid",
"type": "record",
"record": {
"type": "object",
"required": [
"round",
"payload",
"createdAt"
],
"properties": {
"note": {
"type": "string",
"maxLength": 3000,
"description": "Optional caption/description from the submitter.",
"maxGraphemes": 300
},
"round": {
"ref": "com.atproto.repo.strongRef",
"type": "ref",
"description": "Strong-ref to the at.atjam.round record being submitted to."
},
"payload": {
"ref": "com.atproto.repo.strongRef",
"type": "ref",
"description": "Strong-ref to the deliverable record on its native ATProto app. The referenced record's $type SHOULD appear in the round's acceptedSubmissionTypes."
},
"createdAt": {
"type": "string",
"format": "datetime"
}
}
},
"description": "Declares a submission by the record creator to the referenced round."
}