at.atjam.submission

atjam.at

Documentation

Declares a submission by the record creator to the referenced round.

main record

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 graphemes
payload 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.

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."
}

Lexicon Garden

@