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 graphemeskind
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 graphemesKnown values:
music-cover, build-on-backend, writing, game, art, book-clublinks
array
of
ref
#link
Optional
Related URLs (homepage, archive, Discord, etc.).
maxLength: 16 itemsname
string
Required
Display name of the jam (e.g. 'Everyone Plays The Same Song').
maxLength: 640 bytesmaxGraphemes: 64 graphemesView 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."
}