# at.atjam.jam

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

✓ This is the authoritative definition for this NSID.

## Description

A recurring (or one-shot) creative challenge that contains rounds. Identity-bearing container: 'EPTSS-the-project' is one jam; a one-shot game jam is also a jam with a single round.

## Links

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

## Definitions

### `at.atjam.jam#link`

**Type**: `object`

| Property | Type | Required | Description |
|----------|------|----------|-------------|
| `url` | `string` (uri) | Yes |  |
| `label` | `string` | No |  |

### `at.atjam.jam`

**Type**: `record`

Declares a jam owned by the record creator.

**Key**: `tid`

| Property | Type | Required | Description |
|----------|------|----------|-------------|
| `kind` | `string` | No | Open hint about what kind of jam this is. Consumers may render differently per kind, but unknown values must be accepted. |
| `name` | `string` | Yes | Display name of the jam (e.g. 'Everyone Plays The Same Song'). |
| `links` | `array` | No | Related URLs (homepage, archive, Discord, etc.). |
| `createdAt` | `string` (datetime) | Yes | Timestamp the record was created. |
| `description` | `string` | No | Free-form description of the jam, its goals, and audience. |

## Raw Schema

```json
{
  "id": "at.atjam.jam",
  "defs": {
    "link": {
      "type": "object",
      "required": [
        "url"
      ],
      "properties": {
        "url": {
          "type": "string",
          "format": "uri",
          "maxLength": 2048
        },
        "label": {
          "type": "string",
          "maxLength": 640,
          "maxGraphemes": 64
        }
      }
    },
    "main": {
      "key": "tid",
      "type": "record",
      "record": {
        "type": "object",
        "required": [
          "name",
          "createdAt"
        ],
        "properties": {
          "kind": {
            "type": "string",
            "maxLength": 640,
            "description": "Open hint about what kind of jam this is. Consumers may render differently per kind, but unknown values must be accepted.",
            "knownValues": [
              "music-cover",
              "build-on-backend",
              "writing",
              "game",
              "art",
              "book-club"
            ],
            "maxGraphemes": 64
          },
          "name": {
            "type": "string",
            "maxLength": 640,
            "description": "Display name of the jam (e.g. 'Everyone Plays The Same Song').",
            "maxGraphemes": 64
          },
          "links": {
            "type": "array",
            "items": {
              "ref": "#link",
              "type": "ref"
            },
            "maxLength": 16,
            "description": "Related URLs (homepage, archive, Discord, etc.)."
          },
          "createdAt": {
            "type": "string",
            "format": "datetime",
            "description": "Timestamp the record was created."
          },
          "description": {
            "type": "string",
            "maxLength": 30000,
            "description": "Free-form description of the jam, its goals, and audience.",
            "maxGraphemes": 3000
          }
        }
      },
      "description": "Declares a jam owned by the record creator."
    }
  },
  "$type": "com.atproto.lexicon.schema",
  "lexicon": 1,
  "description": "A recurring (or one-shot) creative challenge that contains rounds. Identity-bearing container: 'EPTSS-the-project' is one jam; a one-shot game jam is also a jam with a single round."
}
```
