A project-owned What's New update for an Atmosphere registry profile. Each record represents one release/update note and may optionally link to Tangled commit metadata.
Record Key
any
Any valid record key
Properties
body
string
Required
Update notes shown in What's New and version history.
maxLength: 1000 bytesminLength: 1 bytesmaxGraphemes: 1000 graphemescreatedAt
string
datetime
Required
An RFC 3339 formatted timestamp.
maxLength: 64 bytessource
string
Optional
Where the update came from. Omitted means manual.
maxLength: 32 bytesKnown values:
manual, tangledtangledCommitUrl
string
uri
Optional
Optional Tangled commit URL related to this update.
maxLength: 512 bytestangledRepoUrl
string
uri
Optional
Optional Tangled repository URL used for future sync provenance.
maxLength: 512 bytestitle
string
Required
Short update title.
maxLength: 80 bytesminLength: 1 bytesmaxGraphemes: 80 graphemesupdatedAt
string
datetime
Optional
An RFC 3339 formatted timestamp.
maxLength: 64 bytesversion
string
Optional
Optional version or release label.
maxLength: 32 bytesmaxGraphemes: 32 graphemesView raw schema
{
"key": "any",
"type": "record",
"record": {
"type": "object",
"required": [
"title",
"body",
"createdAt"
],
"properties": {
"body": {
"type": "string",
"maxLength": 1000,
"minLength": 1,
"description": "Update notes shown in What's New and version history.",
"maxGraphemes": 1000
},
"title": {
"type": "string",
"maxLength": 80,
"minLength": 1,
"description": "Short update title.",
"maxGraphemes": 80
},
"source": {
"type": "string",
"maxLength": 32,
"description": "Where the update came from. Omitted means manual.",
"knownValues": [
"manual",
"tangled"
]
},
"version": {
"type": "string",
"maxLength": 32,
"description": "Optional version or release label.",
"maxGraphemes": 32
},
"createdAt": {
"type": "string",
"format": "datetime",
"maxLength": 64
},
"updatedAt": {
"type": "string",
"format": "datetime",
"maxLength": 64
},
"tangledRepoUrl": {
"type": "string",
"format": "uri",
"maxLength": 512,
"description": "Optional Tangled repository URL used for future sync provenance."
},
"tangledCommitUrl": {
"type": "string",
"format": "uri",
"maxLength": 512,
"description": "Optional Tangled commit URL related to this update."
}
}
},
"description": "A project-owned What's New update for an Atmosphere registry profile. Each record represents one release/update note and may optionally link to Tangled commit metadata."
}