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 Optional

Preferred deliverable: a strong-ref to the record on its native ATProto app. The referenced record's $type SHOULD appear in the round's acceptedSubmissionTypes.

url string uri Optional

Fallback deliverable for work not on ATProto: a plain link (itch.io build, hosted doc, etc.). Unverifiable and mutable, so prefer payload when the deliverable is a record. Ignored when payload is present.

View raw schema
{
  "key": "tid",
  "type": "record",
  "record": {
    "type": "object",
    "required": [
      "round",
      "createdAt"
    ],
    "properties": {
      "url": {
        "type": "string",
        "format": "uri",
        "description": "Fallback deliverable for work not on ATProto: a plain link (itch.io build, hosted doc, etc.). Unverifiable and mutable, so prefer payload when the deliverable is a record. Ignored when payload is present."
      },
      "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": "Preferred deliverable: a strong-ref to the 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

@