at.atjam.jam

atjam.at

Documentation

Declares a jam owned by the record creator.

main record

Declares a jam owned by the record creator.

Record Key tid Timestamp-based ID

Properties

createdAt string datetime Required

Timestamp the record was created.

description string Optional

Free-form description of the jam, its goals, and audience.

maxLength: 30000 bytesmaxGraphemes: 3000 graphemes
kind string Optional

Open hint about what kind of jam this is. Consumers may render differently per kind, but unknown values must be accepted.

maxLength: 640 bytesmaxGraphemes: 64 graphemes
Known values: music-cover, build-on-backend, writing, game, art, book-club
name string Required

Display name of the jam (e.g. 'Everyone Plays The Same Song').

maxLength: 640 bytesmaxGraphemes: 64 graphemes
View raw schema
{
  "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."
}
link object

No description available.

Properties

label string Optional

No description available.

maxLength: 640 bytesmaxGraphemes: 64 graphemes
url string uri Required

A valid URI.

maxLength: 2048 bytes
View raw schema
{
  "type": "object",
  "required": [
    "url"
  ],
  "properties": {
    "url": {
      "type": "string",
      "format": "uri",
      "maxLength": 2048
    },
    "label": {
      "type": "string",
      "maxLength": 640,
      "maxGraphemes": 64
    }
  }
}

Lexicon Garden

@