{
"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."
}