# at.atjam.submission

> Published by [atjam.at](https://lexicon.garden/identity/did:plc:b5bxdq5jyv3tvkyscu42xr7u)

✓ This is the authoritative definition for this NSID.

## Description

A participant's submission to a round. atjam does not host the deliverable; the submission strong-refs a record on whichever ATProto app owns the data (plyr.fm track, standard.site post, etc.). The submitter's DID is implicit (the record creator).

## Links

- [View on Lexicon Garden](https://lexicon.garden/lexicon/did:plc:b5bxdq5jyv3tvkyscu42xr7u/at.atjam.submission)
- [Documentation](https://lexicon.garden/lexicon/did:plc:b5bxdq5jyv3tvkyscu42xr7u/at.atjam.submission/docs)
- [Examples](https://lexicon.garden/lexicon/did:plc:b5bxdq5jyv3tvkyscu42xr7u/at.atjam.submission/examples)

## Definitions

### `at.atjam.submission`

**Type**: `record`

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

**Key**: `tid`

| Property | Type | Required | Description |
|----------|------|----------|-------------|
| `note` | `string` | No | Optional caption/description from the submitter. |
| `round` | `ref` → `com.atproto.repo.strongRef` | Yes | Strong-ref to the at.atjam.round record being submitted to. |
| `payload` | `ref` → `com.atproto.repo.strongRef` | Yes | Strong-ref to the deliverable record on its native ATProto app. The referenced record's $type SHOULD appear in the round's acceptedSubmissionTypes. |
| `createdAt` | `string` (datetime) | Yes |  |

## Raw Schema

```json
{
  "id": "at.atjam.submission",
  "defs": {
    "main": {
      "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."
    }
  },
  "$type": "com.atproto.lexicon.schema",
  "lexicon": 1,
  "description": "A participant's submission to a round. atjam does not host the deliverable; the submission strong-refs a record on whichever ATProto app owns the data (plyr.fm track, standard.site post, etc.). The submitter's DID is implicit (the record creator)."
}
```
